angular package json

  • You can find package.json file in project's root folder.
  • It contains Information about web application
  • It contains the information about npm packages installed for the project.
  • Following are some properties and description which is helpful to understand package.json file

Field Description
"name" Your project name
"version" Your project version
"private" If set to true, then npm will refuse to publish it.

Comments